home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / utils1 / bstat15.zip / README.DOC < prev    next >
Text File  |  1994-05-07  |  5KB  |  118 lines

  1.  
  2.                                     BACKSTAT
  3.  
  4.                                    Version 1.5
  5.  
  6.                                     May, 1994
  7.  
  8.                             Copyright (c) 1993 - 1994
  9.  
  10.                                By:  Richard Zakas
  11.  
  12.           WHAT IS IT ?
  13.           ------------
  14.              BACKSTAT is a utility program that provides statistics on how many
  15.           files have been modified since your last backup.  It can optionally
  16.           be used in a batch file to start your backup program when a set
  17.           percentage of the files on your hard disk have been changed.
  18.  
  19.  
  20.  
  21.                                LIMIT OF LIABILITY
  22.  
  23.           BACKSTAT is distributed as-is.  The author disclaims all 
  24.        warranties, expressed or implied.  The author will assume no 
  25.        liability for damages either from the direct use of this product or
  26.        as a consequence of the use of this product.  This offer is a limited
  27.        time offer and pre-empts any previous offer.
  28.  
  29.  
  30.  
  31.                                     SHAREWARE
  32.  
  33.          This is a shareware version of BACKSTAT, and it is fully functional.
  34.        You are encouraged to try this SHAREWARE version, and if you find it
  35.        of value, to register your copy.  You are granted a limited license 
  36.        to use this shareware version for a "reasonable" period of time.  The
  37.        registration fee is $12.50 U.S., and $15.00 outside the U.S.   This
  38.        registration fee entitles you to use BACKSTAT beyond a trial period.
  39.        Registered users will also be able to upgrade their copy of BACKSTAT,
  40.        by removing the registration screen.  When sending in your registration,
  41.        please mention the version you are registering, where you obtained 
  42.        BACKSTAT, and the registration fee.  Any suggestions or comments are 
  43.        always appreciated, so if you have something you want included or 
  44.        changed in the program, please write.
  45.  
  46.        Checks can be made to:
  47.  
  48.                                                       Richard Zakas
  49.                                                       4205K Bland Rd.
  50.                                                       Raleigh,  NC, 27609
  51.  
  52.  
  53.  
  54.                               USING BACKSTAT
  55.  
  56.           BACKSTAT can be run from the DOS command line or in a batch file to
  57.         automate the process of backing up your hard disks.
  58.  
  59.         Entering  BACKSTAT                   (No Drive Letter)
  60.  
  61.         will result in all of your hard drives being scanned for files that 
  62.         have changed since your last backup.  An information screen is then
  63.         displayed and the DOS ERRORLEVEL is set upon program termination.
  64.  
  65.  
  66.         Entering  BACKSTAT   C:
  67.  
  68.         will result in DRIVE C: being scanned for files that 
  69.         have changed since your last backup.  An information screen is then
  70.         displayed and the DOS ERRORLEVEL is set upon program termination.
  71.  
  72.  
  73.         Entering BACKSTAT  /F     or    BACKSTAT  C:  /F
  74.  
  75.         will result in an information screen of all the files that have 
  76.         changed since the last backup being displayed before program
  77.         termination.
  78.  
  79.  
  80.  
  81.         BACKSTAT sets the DOS errorlevel from 0 to 10.  This represents
  82.         the percentage of files that have changed since the last backup.
  83.         If more than 10% of the files have been changed, the errorlevel
  84.         will be set to 10.  Run BACKSTAT from a batch file as follows:
  85.  
  86.  
  87.         BACKUP.BAT
  88. ------------------------------------------------------------------------------
  89.         ECHO OFF
  90.         BACKSTAT %1
  91.         IF ERRORLEVEL 10 GOTO BACKUP
  92.         IF ERRORLEVEL 9 GOTO BACKUP
  93.         IF ERRORLEVEL 8 GOTO BACKUP
  94.         IF ERRORLEVEL 7 GOTO BACKUP
  95.         IF ERRORLEVEL 6 GOTO BACKUP
  96.         IF ERRORLEVEL 5 GOTO CONTINUE
  97.         IF ERRORLEVEL 4 GOTO CONTINUE
  98.         IF ERRORLEVEL 3 GOTO CONTINUE
  99.         IF ERRORLEVEL 2 GOTO CONTINUE
  100.         IF ERRORLEVEL 1 GOTO CONTINUE
  101.         IF ERRORLEVEL 0 GOTO CONTINUE
  102.  
  103.         :BACKUP
  104.         <enter the name of your backup software here>
  105.         GOTO END 
  106.  
  107.         :CONTINUE
  108.         ECHO Backup of the hard drive in not needed at this time 
  109.        
  110.         :END 
  111. -----------------------------------------------------------------------------
  112.  
  113.                                 DISTRIBUTION
  114.  
  115.               You to make as many copies as you wish for distribution
  116.         (in its unaltered original form, including all documentation) to others
  117.         on the same evaluation basis.
  118.